"Animated Input label"
Bootstrap 3.3.0 Snippet by Trends WD

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"></script>
<script src="https://unpkg.com/splitting/dist/splitting.min.js"></script>
<div id="contain">
<div class="inputContainer">
<label id="inputOneLabel" for="inputOne">Input</label>
<input id="inputOne"/>
</div>
<div class="inputContainer">
<label id="inputTwoLabel" for="inputTwo">Input</label>
<input id="inputTwo"/>
</div>
<div class="inputContainer">
<label id="inputThreeLabel" for="inputThree">Input</label>
<input id="inputThree"/>
</div>
</div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@import url("https://fonts.googleapis.com/css?family=Quicksand&display=swap");
html, body {
font-family: 'Quicksand', sans-serif;
height: 100%;
}
#contain {
height: 100%;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
.inputContainer {
position: relative;
margin: 24px;
}
.inputContainer label {
font-size: 0.9em;
display: block;
margin-bottom: 6px;
line-height: 0px;
}
.inputContainer input {
margin-top: 6px;
height: 30px;
width: 300px;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const inputOne = document.querySelector("#inputOne");
const inputOneLabel = document.querySelector("#inputOneLabel");
const splitLabelOne = Splitting({ target: inputOneLabel, by: "chars" })[0]
.chars;
const inputTwo = document.querySelector("#inputTwo");
const inputTwoLabel = document.querySelector("#inputTwoLabel");
const splitLabelTwo = Splitting({ target: inputTwoLabel, by: "chars" })[0]
.chars;
const inputThree = document.querySelector("#inputThree");
const inputThreeLabel = document.querySelector("#inputThreeLabel");
const splitLabelThree = Splitting({ target: inputThreeLabel, by: "chars" })[0]
.chars;
let sineMeUp = false;
const sineCharacters = [];
inputOne.addEventListener("focus", animateInputOne);
inputOne.addEventListener("blur", deanimateInputOne);
inputTwo.addEventListener("focus", animateInputTwo);
inputTwo.addEventListener("blur", deanimateInputTwo);
inputThree.addEventListener("focus", () => {
sineMeUp = true;
animateInputThree([...sineCharacters]);
});
inputThree.addEventListener("blur", () => {
sineMeUp = false;
deanimateInputThree();
});
function animateInputOne() {
const charDistance = inputOne.clientWidth / 4;
let count = 0;
let charStart = 0;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: